projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9915534
)
(Fconstrain_to_field): Fix int/Lisp_Object mixup.
author
Ken Raeburn
<raeburn@raeburn.org>
Sun, 5 Feb 2006 12:15:02 +0000
(12:15 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Sun, 5 Feb 2006 12:15:02 +0000
(12:15 +0000)
src/ChangeLog
patch
|
blob
|
history
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 66061c74810ecf6d4d47d57a53931d7ba2543e0a..bffe8caf089662192de9a216f1288d46bd4fdb06 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2006-02-05 Ken Raeburn <raeburn@raeburn.org>
+
+ * editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup.
+
2006-02-03 Kim F. Storm <storm@cua.dk>
* xdisp.c: Cache last merged escape glyph face.
diff --git
a/src/editfns.c
b/src/editfns.c
index 9be9232a9c703f1e244ddd39b8a4538751b62c27..5bf4eb738ae849b6d678500878a0d93b9ee48107 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-719,7
+719,8
@@
Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
{
/* If non-zero, then the original point, before re-positioning. */
int orig_point = 0;
- int fwd, prev_old, prev_new;
+ int fwd;
+ Lisp_Object prev_old, prev_new;
if (NILP (new_pos))
/* Use the current point, and afterwards, set it. */